/* ---------------------------
   GLOBAL
----------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: "Prompt", sans-serif;
    background: #F7F3EA;  /* cream soft */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------------
   LOGO
----------------------------*/
.logo {
    margin-top: 25px;
    margin-bottom: 10px;
}

.logo img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* ---------------------------
   TITLE
----------------------------*/
.title {
    font-size: 26px;
    font-weight: 600;
    color: #6E5A3C; /* elegant brown */
    margin-bottom: 20px;
}

/* ---------------------------
   CHAT CONTAINER
----------------------------*/
#chat-container {
    width: 90%;
    max-width: 480px;
    height: 75vh;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

/* ---------------------------
   MESSAGES AREA
----------------------------*/
#messages {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

/* Hide scrollbar */
#messages::-webkit-scrollbar {
    width: 6px;
}
#messages::-webkit-scrollbar-thumb {
    background: #D9C9A3;
    border-radius: 8px;
}

/* ---------------------------
   CHAT BUBBLES
----------------------------*/
.message {
    max-width: 75%;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: 15px;
}

/* USER / CHICKEN bubble */
.user {
    background: #D9B66E; /* gold warm */
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* BOT / MOM MONDAY bubble */
.bot {
    background: #E9D8B5; /* warm cream */
    color: #6E5A3C;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* ---------------------------
   INPUT AREA
----------------------------*/
#input-container {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

#user-input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #D8C9B6;
    font-size: 15px;
    background: #FAF7F1;
}

#user-input:focus {
    outline: none;
    border-color: #D9B66E;
}

#send-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #D9B66E;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

#send-btn:hover {
    background: #C6A159;
}
